<!DOCTYPE html>
<html lang="vi">
<head>
    <meta charset="UTF-8">
    <title>Website đang nâng cấp</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <style>
        * {
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            margin: 0;
            height: 100vh;
            background: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333;
        }

        .container {
            text-align: center;
            max-width: 520px;
            padding: 30px;
        }

        .logo {
            margin-bottom: 25px;
        }

        .logo img {
            max-width: 100%;
            height: auto;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        h1 {
            font-size: 30px;
            margin-bottom: 10px;
        }

        p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }

        .divider {
            width: 60px;
            height: 4px;
            background: #e5e5e5;
            margin: 20px auto;
            border-radius: 10px;
        }

        .footer {
            margin-top: 30px;
            font-size: 13px;
            color: #aaa;
        }
    </style>
</head>
<body>

<div class="container">

    <!-- LOGO (CLICK ĐỂ CHUYỂN HƯỚNG) -->
    <div class="logo">
        <a href="https://demodvl.duckdns.org/" target="_blank">
            <img src="logo.png" alt="TAOSHOP303.SITE">
        </a>
    </div>

    <h1>🚧 BỐ MÀY ĐANG LÀM</h1>

    <div class="divider"></div>

    <p>
        CÚT VỀ ĐÊ
    </p>

    <div class="footer">
        © 2026 - TAOSHOP30s.SITE
    </div>
</div>

</body>
</html>
